home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / berm122 / pack.pro < prev    next >
Text File  |  1993-08-16  |  1KB  |  47 lines

  1. #if __PROTO__
  2. # define    P(s) s
  3. #else
  4. # define P(s) ()
  5. #endif
  6.  
  7.  
  8. /* pack.c */
  9. char *skip_blanks P((char *string ));
  10. char *skip_to_blank P((char *string ));
  11. char *myalloc P((size_t sp ));
  12. char *ctl_string P((char *string ));
  13. char *ctl_path P((char *str ));
  14. char *ctl_file P((char *str ));
  15. int init_conf P((void ));
  16. void parsekey P((char *p ));
  17. int getint P((char **p , int *i ));
  18. int getaddress P((char *str , int *zone , int *net , int *node , int *point ));
  19. int getalias P((int zone , int net , int node , int point ));
  20. void get_passw P((int zone , int net , int node , int point ));
  21. void Init P((int argc , char *argv []));
  22. void OpenMail P((void ));
  23. void CloseMail P((void ));
  24. void InitPackets P((void ));
  25. void ClosePacket P((int nr ));
  26. void DeInitPackets P((void ));
  27. int OurMessage P((int from ));
  28. int ReadMessage P((void ));
  29. void SaveMessage P((void ));
  30. void Destination P((int *zone , int *net , int *node , int *type ));
  31. void OpenPacket P((int nr , int zone , int net , int node , int type ));
  32. int MakeMsg P((int nr ));
  33. void PackTo P((int zone , int net , int node , int type ));
  34. void ArcMail P((void ));
  35. void ReDirect P((void ));
  36. void Hold P((void ));
  37. void UnHold P((void ));
  38. void MakePoll P((void ));
  39. void DeInit P((void ));
  40. #ifdef LINN
  41. int CallArc P((char *archiver, char *comline, int zone, int net, int node, int type));
  42. void binkbox P((void));
  43. void boxbink P((void));
  44. #endif
  45.  
  46. #undef P
  47.